home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test__locale.py < prev    next >
Text File  |  2005-10-18  |  2KB  |  53 lines

  1. from test.test_support import verbose, TestSkipped, run_unittest
  2. from _locale import (setlocale, LC_NUMERIC, RADIXCHAR, THOUSEP, nl_langinfo,
  3.                     localeconv, Error)
  4. import unittest
  5.  
  6. candidate_locales = ['es_UY', 'fr_FR', 'fi_FI', 'es_CO', 'pt_PT', 'it_IT',
  7.     'et_EE', 'es_PY', 'no_NO', 'nl_NL', 'lv_LV', 'el_GR', 'be_BY', 'fr_BE',
  8.     'ro_RO', 'ru_UA', 'ru_RU', 'es_VE', 'ca_ES', 'se_NO', 'es_EC', 'id_ID',
  9.     'ka_GE', 'es_CL', 'hu_HU', 'wa_BE', 'lt_LT', 'sl_SI', 'hr_HR', 'es_AR',
  10.     'es_ES', 'oc_FR', 'gl_ES', 'bg_BG', 'is_IS', 'mk_MK', 'de_AT', 'pt_BR',
  11.     'da_DK', 'nn_NO', 'cs_CZ', 'de_LU', 'es_BO', 'sq_AL', 'sk_SK', 'fr_CH',
  12.     'de_DE', 'sr_YU', 'br_FR', 'nl_BE', 'sv_FI', 'pl_PL', 'fr_CA', 'fo_FO',
  13.     'bs_BA', 'fr_LU', 'kl_GL', 'fa_IR', 'de_BE', 'sv_SE', 'it_CH', 'uk_UA',
  14.     'eu_ES', 'vi_VN', 'af_ZA', 'nb_NO', 'en_DK', 'tg_TJ',
  15.     'es_ES.ISO8859-1', 'fr_FR.ISO8859-15', 'ru_RU.KOI8-R', 'ko_KR.eucKR']
  16.  
  17. class _LocaleTests(unittest.TestCase):
  18.  
  19.     def setUp(self):
  20.         self.oldlocale = setlocale(LC_NUMERIC)
  21.  
  22.     def tearDown(self):
  23.         setlocale(LC_NUMERIC, self.oldlocale)
  24.  
  25.     def test_lc_numeric(self):
  26.         for loc in candidate_locales:
  27.             try:
  28.                 setlocale(LC_NUMERIC, loc)
  29.             except Error:
  30.                 continue
  31.             for li, lc in ((RADIXCHAR, "decimal_point"),
  32.                             (THOUSEP, "thousands_sep")):
  33.                 nl_radixchar = nl_langinfo(li)
  34.                 li_radixchar = localeconv()[lc]
  35.                 # Both with seeing what the locale is set to in order to detect
  36.                 # when setlocale lies and says it accepted the locale setting
  37.                 # but in actuality didn't use it (as seen in OS X 10.3)
  38.                 try:
  39.                     set_locale = setlocale(LC_NUMERIC)
  40.                 except Error:
  41.                     set_locale = "<not able to determine>"
  42.                 self.assertEquals(nl_radixchar, li_radixchar,
  43.                                     "%s != %s (%s); "
  44.                                     "supposed to be %s, set to %s" %
  45.                                         (nl_radixchar, li_radixchar, lc,
  46.                                          loc, set_locale))
  47.  
  48. def test_main():
  49.     run_unittest(_LocaleTests)
  50.  
  51. if __name__ == '__main__':
  52.     test_main()
  53.